home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 1 of 3.iso / chapter7 / enumrnam.c < prev    next >
C/C++ Source or Header  |  1996-01-28  |  6KB  |  215 lines

  1.  
  2. #include <windows.h>  
  3. #include "EnumRNam.h" 
  4.  
  5.  
  6. #if defined (WIN32)
  7.     #define IS_WIN32 TRUE
  8. #else
  9.     #define IS_WIN32 FALSE
  10. #endif
  11.  
  12. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  13. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  14. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  15.  
  16. HINSTANCE hInst;   // current instance
  17.  
  18. LPCTSTR lpszAppName  = "MyApp";
  19. LPCTSTR lpszTitle    = "My Application"; 
  20.  
  21. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  22.  
  23. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  24.                       LPTSTR lpCmdLine, int nCmdShow)
  25. {
  26.    MSG      msg;
  27.    HWND     hWnd; 
  28.    WNDCLASS wc;
  29.  
  30.    // Register the main application window class.
  31.    //............................................
  32.    wc.style         = CS_HREDRAW | CS_VREDRAW;
  33.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  34.    wc.cbClsExtra    = 0;                      
  35.    wc.cbWndExtra    = 0;                      
  36.    wc.hInstance     = hInstance;              
  37.    wc.hIcon         = LoadIcon( hInstance, lpszAppName ); 
  38.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  39.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  40.    wc.lpszMenuName  = lpszAppName;              
  41.    wc.lpszClassName = lpszAppName;              
  42.  
  43.    if ( IS_WIN95 )
  44.    {
  45.       if ( !RegisterWin95( &wc ) )
  46.          return( FALSE );
  47.    }
  48.    else if ( !RegisterClass( &wc ) )
  49.       return( FALSE );
  50.  
  51.    hInst = hInstance; 
  52.  
  53.    // Create the main application window.
  54.    //....................................
  55.    hWnd = CreateWindow( lpszAppName, 
  56.                         lpszTitle,    
  57.                         WS_OVERLAPPEDWINDOW, 
  58.                         CW_USEDEFAULT, 0, 
  59.                         CW_USEDEFAULT, 0,  
  60.                         NULL,              
  61.                         NULL,              
  62.                         hInstance,         
  63.                         NULL               
  64.                       );
  65.  
  66.    if ( !hWnd ) 
  67.       return( FALSE );
  68.  
  69.    ShowWindow( hWnd, nCmdShow ); 
  70.    UpdateWindow( hWnd );         
  71.  
  72.    while( GetMessage( &msg, NULL, 0, 0) )   
  73.    {
  74.       TranslateMessage( &msg ); 
  75.       DispatchMessage( &msg );  
  76.    }
  77.  
  78.    return( msg.wParam ); 
  79. }
  80.  
  81.  
  82. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  83. {
  84.    WNDCLASSEX wcex;
  85.  
  86.    wcex.style         = lpwc->style;
  87.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  88.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  89.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  90.    wcex.hInstance     = lpwc->hInstance;
  91.    wcex.hIcon         = lpwc->hIcon;
  92.    wcex.hCursor       = lpwc->hCursor;
  93.    wcex.hbrBackground = lpwc->hbrBackground;
  94.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  95.    wcex.lpszClassName = lpwc->lpszClassName;
  96.  
  97.    // Added elements for Windows 95.
  98.    //...............................
  99.    wcex.cbSize = sizeof(WNDCLASSEX);
  100.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  101.                             IMAGE_ICON, 16, 16,
  102.                             LR_DEFAULTCOLOR );
  103.             
  104.    return RegisterClassEx( &wcex );
  105. }
  106.  
  107.  
  108. SHORT gnPos = 0;
  109.  
  110.  
  111. BOOL CALLBACK PaintBitmaps( HANDLE hModule, LPCTSTR lpszType,
  112.                             LPCTSTR lpszName, LONG lParam )
  113. {
  114.    HBITMAP hBitmap = LoadBitmap( hModule, lpszName );
  115.  
  116.    if ( hBitmap )
  117.    {
  118.       BITMAP bm;
  119.       HDC    hMemDC;
  120.       HWND   hWnd = (HWND)lParam;
  121.       HDC    hDC  = GetDC( hWnd );
  122.       HFONT  hOldFont;
  123.  
  124.       // Get the size of the bitmap.
  125.       // ...........................
  126.       GetObject( hBitmap, sizeof( BITMAP ), &bm );     
  127.             
  128.       // Create a memory DC to select the bitmap into.
  129.       //..............................................
  130.       hMemDC = CreateCompatibleDC( hDC );
  131.       SelectObject( hMemDC, hBitmap );
  132.  
  133.       // Display the bitmap, stretching it to 50X50 pixels.
  134.       //...................................................
  135.       StretchBlt( hDC, gnPos, 0, 50, 50, 
  136.                   hMemDC, 0, 0, bm.bmWidth, bm.bmHeight,
  137.                   SRCCOPY );
  138.  
  139.       // Display the bitmap name.
  140.       //.........................
  141.       hOldFont = SelectObject( hDC, GetStockObject( ANSI_VAR_FONT ) );
  142.       TextOut( hDC, gnPos, 60, lpszName, strlen( lpszName ) ); 
  143.       SelectObject( hDC, hOldFont );
  144.  
  145.       DeleteDC( hMemDC );
  146.       ReleaseDC( hWnd, hDC );
  147.  
  148.       DeleteObject( hBitmap );
  149.  
  150.       gnPos += 100;
  151.    }
  152.  
  153.    return( TRUE );
  154. }
  155.  
  156.  
  157. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  158. {
  159.    switch( uMsg )
  160.    {
  161.       case WM_COMMAND :
  162.               switch( LOWORD( wParam ) )
  163.               {
  164.                  case IDM_TEST :
  165.                         gnPos = 0;
  166.                         EnumResourceNames( hInst, RT_BITMAP,
  167.                                                    PaintBitmaps,
  168.                                                    (LONG)hWnd );
  169.                         break;
  170.  
  171.                  case IDM_ABOUT :
  172.                         DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
  173.                         break;
  174.  
  175.                  case IDM_EXIT :
  176.                         DestroyWindow( hWnd );
  177.                         break;
  178.               }
  179.               break;
  180.       
  181.       case WM_DESTROY :
  182.               PostQuitMessage(0);
  183.               break;
  184.  
  185.       default :
  186.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  187.    }
  188.  
  189.    return( 0L );
  190. }
  191.  
  192.  
  193. LRESULT CALLBACK About( HWND hDlg,           
  194.                         UINT message,        
  195.                         WPARAM wParam,       
  196.                         LPARAM lParam)
  197. {
  198.    switch (message) 
  199.    {
  200.        case WM_INITDIALOG: 
  201.                return (TRUE);
  202.  
  203.        case WM_COMMAND:                              
  204.                if (   LOWORD(wParam) == IDOK         
  205.                    || LOWORD(wParam) == IDCANCEL)    
  206.                {
  207.                        EndDialog(hDlg, TRUE);        
  208.                        return (TRUE);
  209.                }
  210.                break;
  211.    }
  212.  
  213.    return (FALSE); 
  214. }
  215.